home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interplay's Learn to Program Basic (Review Copy)
/
Learn to Program Basic Review Copy (Interplay)(June 23, 1998).ISO
/
pc
/
ltpbasic
/
refxmpl
/
boolean.bas
< prev
next >
Wrap
BASIC Source File
|
1998-04-07
|
226b
|
13 lines
CLS
Print "Draw a rectangle"
Input "Enter a width ",width
Input "Enter a height ",height
Rem Check both width and height
If width < 10 OR height < 10 Then
Print "That's too small"
EndIf
Rect 100,100 to 100+width,100+height